home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / vopl / glvopl.lha / glvopl / gpp / Makefile < prev    next >
Encoding:
Makefile  |  1993-10-07  |  440 b   |  28 lines

  1. #
  2. LIBS = -lsuntool -lsunwindow -lpixrect 
  3.  
  4. SRCS = gpp.c read.c legend.c doargs.c
  5.  
  6. OBJS = gpp.o read.o legend.o doargs.o
  7.  
  8. MCFLAGS = -fsingle -f68881 -g
  9.  
  10. CFLAGS = $(MCFLAGS) -I../src
  11.  
  12. all:    gpp
  13.  
  14. gpp:     $(OBJS) gpp.h ../src/libvopl.a
  15.     cc $(CFLAGS) -o gpp $(OBJS) ../src/libvopl.a $(WHERELIBS) -lhershey $(LIBS) -lm
  16.     
  17. $(OBJS): gpp.h
  18.  
  19. lint: $(SRCS)
  20.     lint -I../vogle/src $(SRCS) > gpp.lint
  21.  
  22. clean:
  23.     rm -f *.o core
  24.  
  25. clobber:
  26.     rm -f gpp *.o core
  27.  
  28.